02. Instructions
#### Starter Code
Please continue from your Midterm project repository. Please create a new branch for all commits you make regarding your final project
OR
Download the starter code here: Starter Code
#### Steps
Create a fully functioning REST API with polyglot persistence that can be inspected via a browser or a tool like Postman.
- Setup
MongoDBand verify connectivity. - Define classes for
MongoDBmodel. - Define required Spring Data MongoDB Repositories.
- Write a persistence service to read/write reviews from
MongoDB. When loading reviews for a product, the service reads the ids fromMySQLand the review document fromMongoDB. - Write tests for
JPA&MongoDBrepositories. - Wire the review persistence service to the already provided
REST Controller.